projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
045f778
)
(fatal_unexec): Use vfprintf, not _doprnt.
author
Richard M. Stallman
<rms@gnu.org>
Fri, 11 Aug 1995 00:26:22 +0000
(
00:26
+0000)
committer
Richard M. Stallman
<rms@gnu.org>
Fri, 11 Aug 1995 00:26:22 +0000
(
00:26
+0000)
src/unexalpha.c
patch
|
blob
|
history
diff --git
a/src/unexalpha.c
b/src/unexalpha.c
index 100cf0aee523b0996f5588d4b5467cc8a28f4985..e71d11e0fe25d49ee58615ccecf4b4c6aad56bc3 100644
(file)
--- a/
src/unexalpha.c
+++ b/
src/unexalpha.c
@@
-442,7
+442,7
@@
fatal_unexec (s, va_alist)
else
fprintf (stderr, "unexec: %s, ", strerror (errno));
va_start (ap);
-
_doprnt (s, ap, stderr
);
+
vfprintf (stderr, s, ap
);
fputs (".\n", stderr);
exit (1);
}